home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / console-common.postrm < prev    next >
Encoding:
Text File  |  2009-11-08  |  420 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = purge ]
  6. then
  7.     rm -rf /etc/console
  8. fi
  9.  
  10. # Automatically added by dh_installdebconf
  11. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  12.     . /usr/share/debconf/confmodule
  13.     db_purge
  14. fi
  15. # End automatically added section
  16. # Automatically added by dh_installinit
  17. if [ "$1" = "purge" ] ; then
  18.     update-rc.d keymap.sh remove >/dev/null || exit $?
  19. fi
  20. # End automatically added section
  21.  
  22.